home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / metacity.postinst < prev    next >
Text File  |  2009-09-23  |  433b  |  17 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. action="$1"
  6.  
  7. if [ "$action" = configure ]; then
  8.     # register the alternatives of x-window-manager manually
  9.     # because dh_installwm doesn't register manpage as slave yet.
  10.     update-alternatives --install /usr/bin/x-window-manager \
  11.         x-window-manager /usr/bin/metacity 60 \
  12.         --slave /usr/share/man/man1/x-window-manager.1.gz \
  13.         x-window-manager.1.gz /usr/share/man/man1/metacity.1.gz
  14. fi
  15.  
  16.  
  17.